home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / icon / contrib / dev.lha / dev / Makefile next >
Encoding:
Makefile  |  1992-12-17  |  241 b   |  12 lines

  1. #  If you're on 4.2 or earlier, use the first line; else the second.
  2. CFLAGS= -g  -DBSD
  3. #CFLAGS=-O
  4.  
  5. mcc:    mcc.o regex.o
  6.     cc $(CFLAGS) -o mcc mcc.o regex.o
  7.  
  8. all:    mcc mcc.1
  9.  
  10. install:    all
  11.     @echo copy mcc and mcc.1 to the appropriate directories.
  12.